home *** CD-ROM | disk | FTP | other *** search
/ The Guided Tour of Multimedia (Second Edition) / The Guided Tour of Multimedia (Second Edition).iso / trials / director / evalcopy / director.z / NOH_TALE.DIR / 00099_Script_99 < prev    next >
Text File  |  1994-06-29  |  640b  |  16 lines

  1. --Choosing "Medium" from the custom Volume menu has the playback
  2. --head go to the frame marked "Medium." This handler then sets 
  3. --the computer's sound level to 4, puts a checkmark
  4. --next to the "Medium" command in the Volume menu, and removes 
  5. --checkmarks from the other Volume menu items.
  6.  
  7. on exitFrame
  8.   set the soundLevel to 4
  9.   beep
  10.   Set the checkMark of menuItem "LOUD" of menu "VOLUME" to FALSE
  11.   Set the checkMark of menuItem "MEDIUM" of menu "VOLUME" to TRUE
  12.   Set the checkMark of menuItem "SOFT" of menu "VOLUME" to FALSE
  13.   Set the checkMark of menuItem "MUTE" of menu "VOLUME" to FALSE
  14.   go to frame "Stay"
  15. end
  16.